Welcome![Sign In][Sign Up]
Location:
Search - delphi sys

Search list

[Windows DevelopWinIO_Keyboard

Description: 调用WinIO模拟键盘的例子。Delphi源码,请注意要把WinIo.dll.sys.VXD 放在EXE目录下.否则无效。-call WinIO simulated keyboard example. Delphi source, Please note should WinIo.dll.sys.VXD on EXE directory. otherwise invalid.
Platform: | Size: 187802 | Author: 陈东 | Hits:

[Otherarmok0171406

Description: win2000下直接访问端口 1、用install_giveio.bat,调用loaddrv.exe,安装giveio.sys 到系统中。 2、安装 port.pas后,在delphi的‘Custom‘面板中, 有一个port元件。 3、拖一个TPort到窗体上,命名为port。 4、那么就可以直接访问端口(2000下也可以),如:读 i:= port[$378] 写 port[$378]:= 5、status_giveio.sys 查看状态,remove_giveio.sys 反安装驱动。 6、tstio.exe 直接调用bios来发声,可以用来测试是否安装驱动成功。cygwin1.dll是loaddrv.exe 要调用的,因为它是用MinGw32下的gcc编译的。
Platform: | Size: 383878 | Author: 利于均 | Hits:

[SourceCode意天进程保护开发包(进程防杀组件)

Description: 1、开发包用途 该开发包用于软件开发人员使用该组件保护自己软件进程不被杀掉. 2、Demo测试方法 (1)进demo目录双击reg.bat对ProcProtectCtrl.dll组件进行注册 (2)双击VCTest.exe运行demo例程 (3)在"请输入进程ID"编辑框中输入想要保护的进程的ID(ID可参考任务管理器),输入-1为保护自身进程 (4)打开任务管理器,尝试杀掉被保护的进程 3、开发包使用方法(C & C++系) (1)把dll目录里所有文件拷到您软件的运行目录(exe所在目录) (2)把inc目录里的文件拷到软件项目里 (3)在您自己程序头文件里include "ProcProtectCtrl.h" 在cpp文件里 include "ProcProtectCtrl_i.c" (4)建立IProcProtect* m_pProcProtect 成员变量或全局变量 (5)在程序开始处调用如下代码以完成组件创建工作 hResult = ::CoCreateInstance(CLSID_ProcProtect, NULL, CLSCTX_INPROC_SERVER, IID_IProcProtect, (void**) &m_pProcProtect); if(!SUCCEEDED(hResult)) { m_pProcProtect->Register(_T("YitProcProtectCtrlSample")); ::AfxMessageBox(_T("ProcProtect component create failed!")); } (6)调用m_pProcProtect->Protect(m_lPid, TRUE, &dwResult)对进程进行保护m_lPid为进程id (7)程序退出前调用m_pProcProtect->Release();以释放资源 特别注意:必需把ProcProtectCtrl.sys、ProcProtectCtrl.dll放到您exe所在目录里并注册ProcProtectCtrl.dll,具体代码可 参考VCTest 4、软件说明 意天进程保护开发包(进程防杀组件)是意天软件推出的一款进程保护开发包,用该开发包主要可使开发人员保护自己的进程不 被taskmanager等工具杀掉,同时taskmanager等工具也无法获得进程的详细信息.该开发包主要使用驱动采用SSDT拦截技术实现 ,上层接口采用com封装,因此既使您用VB;CB;Delphi等开发工具也可以简单的把该组件变成自己软件的一部分,让您的软件不再 被taskmanager随意杀掉!(注:不可用该开发包来实现恶意软件,否则后果自负!)
Platform: | Size: 950053 | Author: yuzhong25@163.com | Hits:

[Communication并口开发调试

Description: delphgi并口控制信号开发接口,适用于Win2000及以上,包含驱动WinIo.sys,WinIo.vxd,WinIo.d-delphgi Parallel Interface development control signal applied to Windows 2000 and above, includes drive WinIo.sys, WinIo.vxd, WinIo.d
Platform: | Size: 19456 | Author: 陈先俞 | Hits:

[Internet-NetworkSHAREdISK

Description: 虚拟磁盘共享网络盘客户端,使用FDISK.SYS函数功能-virtual disk sharing network client sites, the use of function function FDISK.SYS
Platform: | Size: 21504 | Author: 郑无极 | Hits:

[Firewall-SecurityIEBLOCK

Description: 实现根据黑名单或白名单列表对URL地址进行过滤功能。 注册: 1、regsvr32 /s iebho.dll 卸载: 1、regsvr32 /s /u iebho.dll 过滤规则文件: 1、过滤规则文件位于system32目录下,文件名称为urlfilt.sys 2、文件格式为以\x0a分隔的行,第一行标记缺省是禁止网页访问还是允许, 即是白名单还是黑名单, 网址不能加入http://等头,并且采用模糊匹配方法,例如sina将匹配 www.sina.com.cn、sina.cn等 黑名单格式例: 0\x0awww.sina.com.cn\x0abbs.xici.net\x0a 对于列表中的网址执行阻断,列表外的允许访问 白名单格式例: 1\x0awww.sina.com.cn\x0abbs.xici.net\x0a 对于列表中的网址允许访问,列表外的执行阻断 3、BHO组件对urlfilt.sys文件的访问采用fmShareDenyNone方式,不加任何锁-achieved under white list or blacklist of URL filtering function. Registration : 1, typing/s iebho.dll unloading : 1. typing/s/u iebho.dll filtering rules : 1. Filter rules are located in system32 directory and the file name for urlfilt.sys 2. file format for a \ x0a separated OK, OK marking the first default is prohibited or allowed to visit the website. that is, white list or blacklist web site, http://, etc. can be included in the first, and using fuzzy matching, For example, Sina will match www.sina.com.cn, sina.cn blacklist format such cases : 0 \ x0awww.sina.com.cn \ x0abbs.xici.net \ x0a For the list of blocked implementation of the website, the list outside the white list to allow visits format cases : 1 \ x0awww.sina.com.cn \ x0abbs.xici.net \ x0a list for permission to
Platform: | Size: 8192 | Author: eagletmp | Hits:

[Windows DevelopWinIO_Keyboard

Description: 调用WinIO模拟键盘的例子。Delphi源码,请注意要把WinIo.dll.sys.VXD 放在EXE目录下.否则无效。-call WinIO simulated keyboard example. Delphi source, Please note should WinIo.dll.sys.VXD on EXE directory. otherwise invalid.
Platform: | Size: 187392 | Author: 陈东 | Hits:

[Driver Developmirror_sys

Description: mirror 驱动之 sys 部分,比DDK上的架构多出了一点自己的东西。供参考。-mirror of the sys-driven part of the structure than the DDK on a bit more our own things. For reference.
Platform: | Size: 69632 | Author: 成智之 | Hits:

[Othersys-car

Description: 超级简单的管理系统,其中有很多的缺陷, 本人是小菜所以希望高手指点一二。22010902-Super simple management system, which has a lot of defects, side dishes, so I hope I am the master pointing 12. 22010902
Platform: | Size: 8508416 | Author: hanwenjie | Hits:

[Game Hook Crackjiasu

Description: 加速器 变速齿轮 Delphi 做的PORTTALK驱动开发 运行后整个系统都加速 适合所有游戏-Delphi to do the变速齿轮accelerator-driven development PORTTALK running the system as a whole to speed up the game suitable for all
Platform: | Size: 189440 | Author: 高大侠 | Hits:

[Windows DevelopDelphi_GiveIO.sys

Description: 在Delphi中使用GiveIO.sys在windows上读写I_O端口-Delphi used in GiveIO.sys to read and write in the windows on the port I_O
Platform: | Size: 289792 | Author: jackson | Hits:

[Education soft systemSQL2005_s

Description: DELPHI7.0+SQL2005环境下开发 2008年8月假期所写,12天的开发周期,(但没有完成。呵呵) 无第三方控件,程序全部详解 程序目的主要是写对来访问宿舍与货品进出宿舍的管理(已经完成) 程序还差最后几个查询模块没有写。本来是想写完参加大二的文化节的,不过感觉水平还是太低,放弃了,把源码给需要的人参考。 程序模块规划得很差,大家不要见笑啦。呵呵 此程序是本人的第一个操作数据库的例子。高手就略过了,主要对新手有点用处。 BLOG:www.guester.cn BY:蜗牛 EMAIL:sys.cpp@163.com-DELPHI7.0+ SQL2005 environment to develop in August 2008 written by holidays, 12 days of the development cycle, (but is not yet complete. Ha ha) no third party controls, detailed procedures for the purpose of all proceedings is to write to to access of goods into and out houses Quarters Management (completed) program is still several inquiries the last module had not been written. Finished his sophomore year wanted to take part in cultural festivals, but still feel the level is too low, giving up the source code to those who need a reference. Program modules planning poorly, we should not a laughing stock of you. Ha ha this program is my first operation of the database examples. Master on the skip, the main usefulness of the new bit. BLOG: www.guester.cn BY: snail EMAIL: sys.cpp @ 163.com
Platform: | Size: 2690048 | Author: 460411234 | Hits:

[Windows Developvmprotect1.22

Description: VMProtect是目前最强大的虚拟机保护软件之一,适合Visual Basic(native),Visual C,Delphi,ASM等本地编译的目标程序,支持EXE,DLL,SYS。支持Windows各系统,具有很好的兼容性和稳定性。-VMProtect are currently the most powerful virtual machine software to protect one suitable Visual Basic (native), Visual C, Delphi, ASM, such as the objectives of local compile procedures, support EXE, DLL, SYS. Supported Windows systems, has good compatibility and stability.
Platform: | Size: 609280 | Author: chengzheng | Hits:

[Crack HackVMProtect

Description: VMProtect 简介 VMProtect 是新一代的软件保护系统,不像其它常见的保护系统,VMProtect 可以修改应用程序的源代码。VMProtect 将原文件的部分代码转换为在虚拟机中运行的字节码。您可以将虚拟机想像成带有不同于 Intel 8086 处理器指令系统的虚拟处理器;例如,虚拟机没有比较两个操作数的指令,也没有条件跳转和无条件跳转等。 支持的编译器: Delphi Borland C Builder Visual C/C++ Visual Basic (native) Virtual Pascal 支持的文件类型(32 位和 64 位): EXE DLL BPL OCX SYS 支持的操作系统: Windows 95/98 Windows ME Windows NT Windows 2000 Windows XP Windows 2003 Windows Vista-标准类 TObject = class constructor Create procedure Free end TPersistent = class(TObject) procedure Assign(Source: TPersistent) end TStrings = class(TPersistent) function Add(S: String): Integer procedure Append(S: String) procedure AddStrings(Strings: TStrings) procedure Clear procedure Delete(Index: Integer) function IndexOf(const S: String): Integer procedure Insert(Index: Integer S: String) procedure LoadFromFile(FileName: String) procedure SaveToFile(FileName: String) property Count: Integer read property Text: String read write property CommaText: String read write property Strings[Index: Integer]: String read write property Objects[Index: Integer]: TObject read write end TDuplicates = (dupIgnore, dupAccept, dupError) TNotifyEvent = procedure(Sender: TObject) TStringList = class(TStrings) function Find(S: String var Index: Integer): Boolean procedure Sort property Duplicates:
Platform: | Size: 16384 | Author: cxzhack | Hits:

[Crack HackDelphi

Description: VMProtect 简介 VMProtect 是新一代的软件保护系统,不像其它常见的保护系统,VMProtect 可以修改应用程序的源代码。VMProtect 将原文件的部分代码转换为在虚拟机中运行的字节码。您可以将虚拟机想像成带有不同于 Intel 8086 处理器指令系统的虚拟处理器;例如,虚拟机没有比较两个操作数的指令,也没有条件跳转和无条件跳转等。 支持的编译器: Delphi Borland C Builder Visual C/C++ Visual Basic (native) Virtual Pascal 支持的文件类型(32 位和 64 位): EXE DLL BPL OCX SYS 支持的操作系统: Windows 95/98 Windows ME Windows NT Windows 2000 Windows XP Windows 2003 Windows Vista -标准类 TObject = class constructor Create procedure Free end TPersistent = class(TObject) procedure Assign(Source: TPersistent) end TStrings = class(TPersistent) function Add(S: String): Integer procedure Append(S: String) procedure AddStrings(Strings: TStrings) procedure Clear procedure Delete(Index: Integer) function IndexOf(const S: String): Integer procedure Insert(Index: Integer S: String) procedure LoadFromFile(FileName: String) procedure SaveToFile(FileName: String) property Count: Integer read property Text: String read write property CommaText: String read write property Strings[Index: Integer]: String read write property Objects[Index: Integer]: TObject read write end TDuplicates = (dupIgnore, dupAccept, dupError) TNotifyEvent = procedure(Sender: TObject) TStringList = class(TStrings) function Find(S: String var Index: Integer): Boolean procedure Sort property Duplicates:
Platform: | Size: 4096 | Author: cxzhack | Hits:

[Delphi VCLdemo

Description: Ms-Rem 写的进程保护例子 驱动是VC版 例子调用是DELPHI, 先用驱动加载工具加载驱动 Protector.sys 然后在启动例子,例子程序即被保护。 -Written by Ms-Rem-driven process is the protection of examples of examples of VC version is called DELPHI, first drive to load drivers loading tool and then start the example Protector.sys, for example, was the protection of the procedure.
Platform: | Size: 9216 | Author: r00tsh3ll | Hits:

[Windows Developsource

Description: Ms-Rem 写的进程保护完整源码 驱动是VC版 例子调用是DELPHI, 先用驱动加载工具加载驱动 Protector.sys 然后在启动例子,例子程序即被保护。-Ms-Rem protect the integrity of the process of writing source-driven example is the VC version is called DELPHI, the first tool used to load drivers to load drivers and then restart Protector.sys example, was the protection of examples of procedures.
Platform: | Size: 3072 | Author: r00tsh3ll | Hits:

[Multimedia Developdelphi_qxgl

Description: 用delphi写的用户权限管理 修改了权限树节点状态生成过程,采用循环遍历树结点 修改了主界面菜单和工具条显示过程,采用递规遍历菜单 通过系统管理员进入sys权限设置,在mainfrom创建的时候读取权限。 权限设置模块中可根据需要改为:将树型结构的节点写进数据库,进行动态修改。在程序中动态生成树型结构 过系统管理员:sys 密码:sys 普通用户:001 密码:123 用VB、VS等开发工具可参考设计。-Use delphi write permissions to modify user rights management tree node-state generation process, using loop traversing the tree nodes modify the main interface menu and toolbar shows the process of delivery rules adopted by the system administrator access to traverse the menu sys permissions settings created in the mainfrom when the read permissions. Permission settings module as needed with the following: the tree structure of nodes included in the database, the dynamic changes. Dynamically generated in the program tree structure over the system administrator: sys Password: sys ordinary user: 001 Password: 123 using VB, VS and other development tools available reference design.
Platform: | Size: 114688 | Author: | Hits:

[Delphi VCLsidemo

Description: Get system info like computername, username, win dir, sys dir, registered owner, registered company etc
Platform: | Size: 4096 | Author: ser1 | Hits:

[Delphi VCLdelphi-antivirus

Description: scan dll exe com sys
Platform: | Size: 11475 | Author: mzexe@yahoo.fr | Hits:
« 12 »

CodeBus www.codebus.net